home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / compat / bsd / bcopy.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  471 b   |  26 lines

  1. @node bcopy, memory
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <string.h>
  6.  
  7. void bcopy(const void *source, void *dest, int length);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. Copy @var{length} bytes from @var{source} to @var{dest}.  Overlapping
  13. regions are handled properly, although this behavior is not portable. 
  14.  
  15. @subheading Return Value
  16.  
  17. No value is returned.
  18.  
  19. @subheading Example
  20.  
  21. @example
  22. struct s a, b;
  23. bcopy(a, b, sizeof(struct s));
  24. @end example
  25.  
  26.